home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 7 / Gekikoh Dennoh Club Vol. 7 (Japan).7z / Gekikoh Dennoh Club Vol. 7 (Japan) (Track 01).bin / games / otoko / source.lzh / priority.h < prev    next >
C/C++ Source or Header  |  1999-06-14  |  2KB  |  57 lines

  1. /* スプライト表示優先順位、パレット定義 */
  2.  
  3. #ifndef PRIORITY
  4.  
  5. #define PRIORITY
  6.  
  7. #define PRIORITY_CURSOR        0x3f    /* エントリー編集モード用カーソル */
  8.  
  9. #define PRIORITY_ESHOT        0x3f    /* 敵弾 */
  10. #define PRIORITY_ELASER        0x3e    /* 敵レーザー */
  11.  
  12. #define PRIORITY_ZAKO        0x3d    /* ザコ */
  13. #define PRIORITY_ZAKO_CORE    0x3c    /* ザココア */
  14. #define PRIORITY_BARRIER    0x3b    /* 自機バリア */
  15. #define PRIORITY_PLAYER_EXPL    0x3b    /* 自機爆風 */
  16. #define PRIORITY_PLAYER        0x3a    /* 自機 */
  17. #define PRIORITY_SHOT        0x39    /* 自機ショット */
  18. #define PRIORITY_BOMB_STR    0x38    /* ボム文字列 */
  19. #define PRIORITY_POINTS        0x38    /* 得点表示 */
  20. #define PRIORITY_BOMBER        0x37    /* ボンバー爆風 */
  21. #define PRIORITY_ZAKO_EXPL    0x36    /* ザコ爆風 */
  22. #define PRIORITY_BOSS_EXPL    0x35    /* ボス爆風 */
  23. #define PRIORITY_BOSS_PARTS    0x34    /* ボスパーツ(上) */
  24. #define PRIORITY_BOSS        0x33    /* ボス本体 */
  25. #define PRIORITY_BOSS_CORE    0x32    /* ボスコア */
  26. #define PRIORITY_BOSS_PARTS_L    0x31    /* ボスパーツ(下) */
  27. #define PRIORITY_HAHEN        0x31    /* 破片 */
  28.  
  29.  
  30. /* 以下パレット */
  31. #define PALET_CURSOR    0x0400
  32.  
  33. #define PALET_CORE_BLUE    0x0400
  34. #define PALET_CORE_RED    0x0500
  35. //#define PALET_CORE_BLUE        0x0D00
  36. //#define PALET_CORE_RED        0x0E00
  37. #define PALET_POINTS_BLUE    0x0800
  38. #define PALET_POINTS_RED    0x0700
  39. #define PALET_PLAYER        0x0700
  40. #define PALET_PLAYER_FLASH    0x0D00
  41. #define PALET_RED            0x0E00    /* 赤フラッシュ */
  42. #define PALET_DAMAGE        0x0F00    /* 白フラッシュ */
  43.  
  44.  
  45. #define PALET_LBOSS01        0x0600
  46. #define PALET_LBOSS01_1        0x0700    /* arg = 1 の時のパレット */
  47.  
  48. #define PALET_LBOSS02        0x0900
  49. #define PALET_LBOSS02_1        0x0300    /* arg = 1 の時のパレット */
  50.  
  51. #define PALET_LBOSS03        0x0900
  52. #define PALET_LBOSS03_1        0x0300    /* arg = 1 の時のパレット */
  53.  
  54. #define PALET_LBOSS04        0x0900
  55.  
  56. #endif
  57.